home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / video / fly8111-.000 / fly8111- / fly8 / nosystem.c < prev    next >
C/C++ Source or Header  |  1979-12-31  |  717b  |  49 lines

  1. /* --------------------------------- nosystem.c ----------------------------- */
  2.  
  3. /* This is part of the flight simulator 'fly8'.
  4.  * Author: Eyal Lebedinsky (eyal@ise.canberra.edu.au).
  5. */
  6.  
  7. /* Dummy system driver.
  8. */
  9.  
  10. #include "fly.h"
  11.  
  12.  
  13. LOCAL_FUNC int FAR
  14. nsys_init (void)
  15. {return (0);}
  16.  
  17. LOCAL_FUNC void FAR
  18. nsys_term (void)
  19. {}
  20.  
  21. LOCAL_FUNC Ulong FAR
  22. nsys_disable (void)
  23. {return (0);}
  24.  
  25. LOCAL_FUNC void FAR
  26. nsys_enable (Ulong flags)
  27. {}
  28.  
  29. LOCAL_FUNC void FAR
  30. nsys_shell (void)
  31. {}
  32.  
  33. LOCAL_FUNC void FAR
  34. nsys_build (char *FullName, char *path, char *name, char *ext)
  35. {}
  36.  
  37. struct SysDriver NEAR SysNone = {
  38.     "NoSystem",
  39.     0,
  40.     NULL,
  41.     nsys_init,
  42.     nsys_term,
  43.     0,    /* poll */
  44.     nsys_disable,
  45.     nsys_enable,
  46.     nsys_shell,
  47.     nsys_build
  48. };
  49.